home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM A / PD-ROM A.iso / Programming / Programming Languages / MacOberon / MacOberon (core) / Compiler.Tool (.txt) < prev    next >
Encoding:
Oberon Text  |  1991-02-15  |  719 b   |  20 lines  |  [.Ob./.Ob2]

  1. Syntax10.Scn.Fnt
  2. Syntax10i.Scn.Fnt
  3. Compiler.Compile *
  4. Compiler.Compile {filename} ~
  5. Compiler.DeleteSym {filename} ~
  6. The Oberon Compiler accepts the following options:
  7.     s    Enable generation of new Symbol File
  8.     x    Disable Index Checks
  9.     n    Disable NIL Checks for Pointers
  10.     p    Disable NIL Checks for Procedure Variables
  11.     t    Disable Type Checks
  12.     r    Enable Range Checks
  13.     g    Suppress Garbage Collection after this Compilation
  14. Each file parameter may be followed by a slash ("/") and a list of options.
  15. If garbage collection is suppressed, compilation runs faster but might not
  16. be completed if too many files or too much memory are used.
  17. Examples:
  18.     Compiler.Compile */n
  19.     Compiler.Compile Test.Mod ~
  20.